home *** CD-ROM | disk | FTP | other *** search
- from JascApp import *
-
- def ScriptProperties():
- return {
- 'Author': '',
- 'Copyright': '',
- 'Description': '',
- 'Host': 'Paint Shop Pro',
- 'Host Version': '8.01'
- }
-
- def Do(Environment):
- # CaptureSetup
- App.Do( Environment, 'CaptureSetup', {
- 'DoCapture': App.Constants.Boolean.false,
- 'CaptureSetup': {
- 'DelayTimer': 2,
- 'ActivateUsing': App.Constants.CaptureActivation.RightMouseClick,
- 'Type': App.Constants.CaptureType.Area,
- 'MultipleCaptures': App.Constants.Boolean.false,
- 'IncludeCursor': App.Constants.Boolean.false,
- 'FKey': 10,
- 'AltKey': App.Constants.Boolean.false,
- 'ControlKey': App.Constants.Boolean.false,
- 'ShiftKey': App.Constants.Boolean.false
- },
- 'GeneralSettings': {
- 'ExecutionMode': App.Constants.ExecutionMode.Interactive,
- 'DialogPlacement': {
- 'ShowMaximized': App.Constants.Boolean.false,
- 'Rect': ((380,336),414,244)
- },
- 'AutoActionMode': App.Constants.AutoActionMode.Match
- }
- })
-
-